home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 5_11.lha / 5_11 / 5_10a3.c < prev    next >
Text File  |  1993-08-08  |  461b  |  20 lines

  1. * Copyright (c) 1990 by AT&T Bell Telephone Laboratories, Incorporated. */
  2. * The C++ Answer Book */
  3. * Tony Hansen */
  4. * All rights reserved. */
  5. * Copyright (c) 1990 by AT&T Bell Telephone Laboratories, Incorporated. */
  6. * The C++ Answer Book */
  7. * Tony Hansen */
  8. * All rights reserved. */
  9. / cleanup a symbol table
  10. include <table.h>
  11.  
  12. able::~table()
  13.  
  14.    for (int i = 0; i < size; i++)
  15.        for (name *n = tbl[i]; n; n = n->next)
  16.     delete n;
  17.     
  18.    delete tbl;
  19.  
  20.